ReplaceNoCase(string, substring1, substring2 [, scope ])Returns string with occurrences of substring1 being replaced regardless of case matching with substring2 in the specified scope.
See also Find, Replace, ReplaceList, and REReplace.
Any string.
String to be replaced.
String that should replace occurrences of substring1.
Defines how to complete the replace operation:
ONE
-- Replace only the first occurrence (default).
ALL
-- Replace all occurrences.